body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    background-color: #333;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 100px;
    /* 在页面底部添加额外的空间 */
    min-height: 100vh;
    /* 设置最小高度确保始终至少占据整个视口 */
    overflow: auto;
    /* 允许页面滚动 */
}

.centered-box {
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 15px 10px rgba(100, 100, 100, 0.5);
    width: 60%;
    position: relative;
    /* 使用relative */
    text-align: left;
    margin-top: 10%;
    /* 调整对话框的初始顶部距离 */
}

.item,
.subitem {
    cursor: pointer;
    margin-top: 10px;
}

.subitem,
.sub-subitem {
    display: none;
    margin-left: 30px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}